ComponentOne FinancialChart for WPF
C1.WPF Namespace / IOrderedSet<T> Interface / Item Property



In This Topic
    Item Property (IOrderedSet<T>)
    In This Topic
    Gets the item at the specified index.
    Syntax
    'Declaration
     
    
    ReadOnly Default Property Item( _
       ByVal index As Integer _
    ) As T
    'Usage
     
    
    Dim instance As IOrderedSet(Of T)
    Dim index As Integer
    Dim value As T
     
    value = instance.Item(index)
    T this[ 
       int index
    ]; {get;}
    property T^ default [int] {
       T^ get(int index);
    }

    Parameters

    index

    Property Value

    The element at the specified index.
    See Also